home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / rend10.lzh / REND1.0 / Include / viewperstrans.h < prev   
Encoding:
C/C++ Source or Header  |  1994-02-25  |  412 b   |  22 lines

  1. #ifndef VIEWPERSTRANS_H
  2. #define VIEWPERSTRANS_H
  3.   
  4. #define MAXPOLYINVIEW 2000      /* Change along with constants in database.c */ 
  5.  
  6. #ifndef GRAPHICS_VIEW_H
  7.  
  8. struct View {
  9.    FLOAT x,y,z,phi,theta,ro,d,f;
  10. };
  11.  
  12. #endif
  13.  
  14. UBYTE openviewperstrans(void);
  15. struct View *allocateview(void);
  16. void configureview(struct View *);
  17. void transformvert(void);
  18. void releaseview(struct View *);
  19. void closeviewperstrans(void); 
  20.  
  21. #endif
  22.